home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 October / EnigmA AMIGA RUN 01 (1995)(G.R. Edizioni)(IT)[!][issue 1995-10][Aminet 7].iso / Aminet / comm / tcp / AmiTCPsdk_40.lha / AmiTCP-4.0 / AmiTCP-sdk-40.readme next >
Text File  |  1994-10-19  |  11KB  |  266 lines

  1. Short: SDK for the AmiTCP/IP protocol stack
  2. Type: comm/net
  3. Uploader: AmiTCP-Group@nsdi.fi
  4. Author: AmiTCP-Group@ndsi.fi (Network Solutions Development Inc.)
  5. Version: Release 4.0
  6.  
  7.   This archive contains include files, some development tools, link
  8.   libraries (with source) and programming examples for AmiTCP/IP 4.0.
  9.  
  10.   AmiTCP/IP is propiertary, copyrighted product of the NSDi - Network
  11.   Solutions Development Inc, Finland.  See the file 'LICENCE.SDK'
  12.   included in the archive for the licence conditions.
  13.  
  14.   See AmiTCP-demo-40.readme for further information about AmiTCP/IP.
  15.  
  16. * Bug reports 
  17.  
  18.   Send any bug reports to <AmiTCP-Bug@nsdi.fi>.
  19.  
  20. * New Features, enchancements and bug fixes on each release of the SDK:
  21.  
  22.   NOTE: AmiTCP itself is not included in the SDK archive, but the
  23.   relevant (from the programmers point of view) new features and bug
  24.   fixes are mentioned here for completeness. 3.0 beta releases are not
  25.   mentioned in this list for clarity and to avoid unnecessary confusion.
  26.  
  27.   New Features on 4.0:
  28.  
  29.     * AmiTCP:
  30.     - Added new function: GetSocketEvents().
  31.     - Added the link level address handling, changed if_type to use
  32.       hardware types.
  33.     - Added new sana-II errors to the error lists.
  34.     - Configured domain names are now used on internal host
  35.       searches, too.
  36.     - Added error messages to startup failures.
  37.     - Early error messages are now printed to the console.
  38.     - db/resolv.conf is now read for DOMAIN and NAMESERVER entries.
  39.     - db/netdb is not read any more, the individual files (hosts,
  40.       protocols, networks, sercives, resolv.conf and inet.access)
  41.       are read explicitly.
  42.     - WITH keyword is removed from netdb parsing
  43.     - Removed ARexx variables TASKNAME and NTHBASE (they were
  44.       obsolete).
  45.     - Added new API function GetSocketEvents().
  46.     - Added new SocketBaseTagList() tag SBTC_SIGEVENTMASK.
  47.     - Added new socket option SO_EVENTMASK. Setting this option
  48.       will set the ASYNC mode on the socket also.
  49.     - Socket owner is now set by default, _except_ after
  50.       ObtainSocket().
  51.     - FIOSETOWN ioctl now demands the caller to set itself as the
  52.       owner.
  53.     - Added new callback functionality to coordinate fd tables
  54.       with the link library. (SocketBaseTags() tag
  55.       SBTC_FDCALLBACK).
  56.     - Made name server resolving multithreaded. Now each
  57.       application has it's own set of resolver state variables.
  58.       Before any name resolvation would block if another
  59.       resolvation was in progress.
  60.     - Added h_errno setting via a pointer (SocketBaseTags() tag
  61.       SBTC_HERRNOLONGPTR).
  62.     - Changed the AmiTCP ARexx port (AMITCP) to show only after the API
  63.       is up and running (no need to "wait" on the bin/startnet).
  64.     - Added functions sendmsg() and recvmsg() for scatter/gather I/O.
  65.     - First parameter to Dup2Socket() can now be -1 to mark the fd
  66.           (the second parameter) as not to be used by AmiTCP.
  67.     - Added function SocketBaseTagList(). Tag definitions for it are
  68.           on netinclude:amitcp/socketbasetags.h.
  69.     - Added function gethostid(), which returns the primary IP
  70.           address of the host as the unique host id.
  71.     - Implemented gethostname() API function and HOSTNAME ARexx variable
  72.       (QUERY/SET). The host name is queried from the netdb and/or name
  73.       server, if it is not explicitly given in db/AmiTCP.config _or_ set
  74.       with the ARexx SET command.
  75.     - Added support for the BSD %m feature to the syslog() (%m is
  76.           replaced by the error description of current errno value), Also
  77.           changed the formatting code to not use the Exec's RawDoFmt()
  78.           allowing 32 bit values to be printed without the 'l' size
  79.           modifier. 
  80.     - Only the sizes 1, 2 and 4 are now allowed for the errno
  81.           variable.
  82.     - SetErrnoPtr() has now return value. 0 on success and -1
  83.           otherwise. The _old_ errno indicates the error causing the
  84.           failure.
  85.     - "new" interface naming style (eg. slip.device/0 -> sl0).
  86.  
  87.     * netinclude:
  88.     - Removed KERNEL specific definitions.
  89.     - Added files stdio.h and fcntl.h supporing DOS stdio if
  90.       USE_DOSIO is defined. Otherwise they include the original
  91.       files from the INCLUDE:.
  92.       NOTE: socket stdio does not work with the USE_DOSIO. SAS/C
  93.       stdio must be used, if the sockets are to be used via the
  94.       stdio functions.
  95.     - Added files: sys/file.h, net/if_types.h, net/if_dl.h
  96.     - updated: device/sana2.h, devices/sana2.i,
  97.       devices/sana2specialstaats.h, devices/sana2specialstats.i
  98.     - Added prototype, pragma, fd entry and inline function for the new
  99.       GetSocketEvents() function.
  100.     - (sys/socket.c):
  101.       Added asynchronous socket event codes and a new socket option to
  102.       set per socket event mask.
  103.     - (amitcp/socketbasetags.h):
  104.       Added tag code for event notification signal mask
  105.       (SBTC_SIGEVENTMASK).
  106.     - (sys/syslog.h):
  107.       Removed AmiTCP's internal log path names.
  108.     - Added arpa protocol headers (arpa/ftp.h, arpa/nameser.h,
  109.       arpa/tftp.h and arpa/telnet.h) to the distribution.
  110.     - Added/deleted some files.
  111.     - Added SocketBaseTagList() definitions to
  112.       amitcp/socketbasetags.h.
  113.     - GCC: Added inline functions from clib/socket_inlines.h to
  114.       inline/socket.h, since those had to be modified for gcc.
  115.       Generated big list of defines to make possible to use local
  116.       `SocketBase' variable in calls to bsdsocket.library calls.
  117.       This feature is invoked defining SOCKETBASE_IN_CONTEXT.
  118.     - Added syslog.h (includes sys/syslog.h) for source
  119.       compatibility.
  120.     - SAS/C: inline functions are defined only if OPTINLINE is
  121.       used, netlib stubs are used otherwise.
  122.     - Added new prototypes and declarations for the
  123.       usergroup.library and its link library (grp.h, pwd.h,
  124.       unistd.h, utmp.h, clib/netlib_protos.h).
  125.     - Changes for the short interface names, removed interface
  126.       tags.
  127.     - Added include files for the netinfo.device.
  128.     - Added RPC include directories rpc and rpcsvc.
  129.  
  130.     * net.lib:
  131.     - Added tzset() to the timerinit.c to override the one from
  132.       the SAS/C sc.lib. ENV:TZ is just once, or not at all if
  133.       locale.library is present.
  134.     - Added dosio_init.c, dosio_sprintf.c.
  135.     - Added compiling the USE_DOSIO versions of the libraries (the
  136.       names of the USE_DOSIO versions contain 'd' after the base
  137.       name of the library, for example: net.lib -> netd.lib).
  138.     - Added functions: link_addr(), link_ntoa().
  139.     - Updated to open version 4 of the bsdsocket.library.
  140.     - Moved usr.lib functionality to here.
  141.     - Added implementation of SAS/C level 1 I/O functions, which
  142.       allows stdio on sockets (printf(), and a like).
  143.     - Integrated inetd daemon startup code to here. Includes
  144.       functions init_inet_daemon() and set_socket_stdio(). See
  145.       src/examples/serv for an example.
  146.     - Added some unix style functions (utime(), popen(), sleep()
  147.       etc.). See doc/netlib.doc for a full list and a reference.
  148.     - Added real h_errno variable.
  149.     - Added rcmd() and resvport(), removed getpwuid() and getgrgid().
  150.     - Added syslog() support functions: openlog(), closelog() and
  151.           setlogmask().
  152.     - Removed errlst.c (error tables are now inside the AmiTCP to
  153.       decrease overall memory usage).
  154.     - Removed gethostname(), now implemented in the AmiTCP.
  155.     - Added strerror().
  156.     - Added perror() and stubs for the inline functions (if the
  157.       inlining is not done).
  158.     - Program name is passed to the AmiTCP at startup. It is used
  159.       in the syslog() messages.
  160.     - New function herror() will print the host error code set
  161.       after host resolving failure (uses SocketBaseTags()).
  162.     - New function GetHErrno() will return the host error code
  163.       using the SocketBaseTags().
  164.  
  165.     * libs/usergroup.library:
  166.     - Added a new function call getcredentials() which returns all
  167.       credential for a process, updated library version to 4.
  168.     - New library managing the user/group information.
  169.     - The default user is now "nobody" (before it was "root").
  170.  
  171.     * devs/netinfo.device:
  172.         - New device, which handles the actual user/group database
  173.       files.
  174.  
  175.     * src/examples/serv:
  176.     - New example of stdio and inetd usage.
  177.  
  178.     * rpc.lib:
  179.     - AmiTCP implementation of the Sun RPC 4.0.
  180.     - Added support for the USE_DOSIO. Now a
  181.       special version of the rpclib using the dosio is compiled by
  182.       default (rpcdr.lib). The dosio version of the rpclib uses BPTR
  183.       file descriptors (dos.library files) instead of FILE * (link
  184.       library stdio files) with the xdrstdio_create().
  185.       Using rpcdr.lib and netd.lib with a typical RPC program makes it
  186.       5k smaller wrt. link library stdio.
  187.  
  188.     * help/RPC.guide:
  189.     - Full documentation for the RPC in the AmigaGuide format.
  190.  
  191.     * rcsrev:
  192.     - New development utility, which creates standard _rev.h files
  193.       from some files RCS id.
  194.  
  195.     * src/devtools, src/examples:
  196.     - New directories to clean up the directory structure.
  197.  
  198.     * portmap:
  199.     - RPC program,version to port mapper, needed to be run before
  200.       any RPC based servers.
  201.  
  202.     * rpcinfo:
  203.     - Utility to show RPC bindings on a portmap on some host.
  204.  
  205.   Fixed Bugs on 4.0:
  206.  
  207.     * AmiTCP:
  208.     - Fixed bug with configuration string setting. Too small buffer
  209.       restricted the configuration string sizes to less than 24 bytes.
  210.     - Fixed syslog message level handling. It was broken if the facility
  211.       code was present.
  212.     - Changed gethostbyname() not to treate the name as dot notation IP
  213.       address based on the first digit only. Full check for the dot
  214.       notation is now made.
  215.     - Fixed bug in getservbyname() which now checks the protocol
  216.       string.
  217.     - Fixed the route dumping bug.
  218.     - Logging information is now appended to the end of the old
  219.           log file.
  220.  
  221.     * net.lib:
  222.     - Added priority to usergroup autodestructor function.
  223.  
  224.     * inetd:
  225.     - Fixed bugs in server argument parsing. Before any more than
  226.       one argument would not have worked. (Thanks to Magnus Lilja
  227.       for pointing this out).
  228.  
  229.  
  230.   New Features on 2.3:
  231.  
  232.     * AmiTCP:
  233.     - New ARexx command "KILL" and a new script, bin/stopnet,
  234.           which sends this command to AmiTCP, causing it to try to
  235.           stop all networking applications, and if successfull,
  236.           itself, too.
  237.  
  238.   Fixed Bugs on 2.3:
  239.  
  240.     * AmiTCP:
  241.     - Removed the incorrect use of M_EOR, which caused fragmented
  242.           packets to be    truncated.
  243.  
  244.   New Features on 2.2:
  245.  
  246.     * AmiTCP:
  247.      - The interactive sessions have now a higher priority when
  248.       using rh(c)slip.device
  249.  
  250.   New Features on 2.1:
  251.  
  252.     * Inet-handler:
  253.         - With Inet-Handler you can use AmigaDOS IO to access TCP protocol
  254.  
  255.     * AmiTCP:
  256.     - A timestamp is added to the log messages
  257.     - Faster checksum calculation implemented in assembler
  258.  
  259.     * net.lib: 
  260.     - User and group database handling routines are added to the
  261.       net.lib. Release includes example databases for `ls' and `finger'
  262.       utilities, which use these databases
  263.     - A real gettimeofday() using locale is also added
  264.  
  265. EOF
  266.